home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Dom i biuro / Crimson Editor 3.70 / cedt370r.exe / template / hello world program.java < prev    next >
Text File  |  2003-04-11  |  179b  |  10 lines

  1. // basic template file for java program
  2.  
  3. import java.io.*;
  4.  
  5. public class HelloWorld {
  6.     public static void main(String[] args) {
  7.         System.out.println("hello world");
  8.     }
  9. }
  10.